func net/url.unescape
14 uses
net/url (current package)
url.go#L185: return unescape(s, encodeQueryComponent)
url.go#L196: return unescape(s, encodePathSegment)
url.go#L201: func unescape(s string, mode encoding) (string, error) {
url.go#L605: if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
url.go#L611: if username, err = unescape(username, encodeUserPassword); err != nil {
url.go#L614: if password, err = unescape(password, encodeUserPassword); err != nil {
url.go#L645: host1, err := unescape(host[:zone], encodeHost)
url.go#L649: host2, err := unescape(host[zone:i], encodeZone)
url.go#L653: host3, err := unescape(host[i:], encodeHost)
url.go#L667: if host, err = unescape(host, encodeHost); err != nil {
url.go#L692: path, err := unescape(p, encodePath)
url.go#L720: p, err := unescape(u.RawPath, encodePath)
url.go#L759: frag, err := unescape(f, encodeFragment)
url.go#L783: f, err := unescape(u.RawFragment, encodeFragment)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |